home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / Apple Guide / Authoring / Example Source Files / CD Contents Guide Source / Build File next >
Encoding:
Text File  |  1994-08-30  |  2.5 KB  |  72 lines  |  [TEXT/ttxt]

  1. ######################################################################
  2. #                                                            
  3. #        File:          Build File                
  4. #                                                            
  5. #        Contains:      Guide Script commands pointing to all of the related 
  6. #                 source files needed to build a guide file.
  7. #
  8. #  Coded by:      Glenn Katz
  9. #
  10. #        Copyright:     ©1994 by Apple Computer, Inc.        
  11. #                                                            
  12. ######################################################################
  13.  
  14. ######################################################################
  15. #    How To Use This File
  16. ######################################################################
  17.  
  18. # This file points to all of the related source files that define your
  19. # guide file.
  20. #
  21. # This file is part a set of files that you will compile to create your
  22. # guide file.  You will also need:
  23. #
  24. # • Standard Setup   - a file that contains the Guide Script commands 
  25. #                      needed to setup a guide file that follows the 
  26. #                      Apple Guide HI guidelines.  
  27. #
  28. # • Content    - a file that contains the actual text that appears on
  29. #                the guide file panels.  (As your guide file grows, it
  30. #                may be helpful to break the Content file into several
  31. #                smaller files).
  32. #
  33. #    To use this file:
  34. #
  35. #  1.  Edit the Content file to define the content of your guide file.
  36. #
  37. #  2.  This file already points to the Standard Setup and Content files.
  38. #      You can use it "as is", but if you break your content into
  39. #      several smaller files, you must add <Include> commands to also
  40. #      point to them.
  41. #
  42. #  3.  Use the Guide Maker Build utility to compile this file.
  43.  
  44.  
  45.  
  46. ######################################################################
  47. #    Relates Source Files
  48. ######################################################################
  49.  
  50. # You can include all of the Guide Script commands that define your
  51. # guide file in a single source file or in multiple source files. 
  52. # Use an <Include> command to point to each of the other source files 
  53. # that contain Guide Script commands.
  54.  
  55. <Include> "Standard Setup"
  56. <Include> "Content"
  57. <Include> "Coaches"
  58. <Include> "Topic Areas"
  59. <Include> "Index"
  60.  
  61. # Use the <Resource> command to specify each file containing 
  62. # resources to be included in your guide file. You can include all 
  63. # resources in a file, all resources of a given resource type, 
  64. # all resources with a given resource ID or resource name, 
  65. # or a single resource.
  66. #
  67. # Syntax: <Resource> fileName, resType [, whichResource]
  68.  
  69. <Resource> "Standard Resources", ALL
  70.  
  71.  
  72.